diff options
author | jstebbins <[email protected]> | 2008-09-02 22:56:19 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2008-09-02 22:56:19 +0000 |
commit | 45cabbfe4ab8b95b5f25a236f8c93b64d3ccf8df (patch) | |
tree | 40326771d4a7f4721363e3b76ebfca5329595deb /gtk/configure.ac | |
parent | fd744170cb1da2675e1168402866f5c20f08a726 (diff) |
LinGui: Presets and preferences are now stored as plists
This will also make saving/restoring the queue much easier.
It's a scary big change. 1400 new lines of code. Due to efficiencies
of a better desing, 2400 lines of old code also gets refactored
down to 1600. Giving a final net +600 lines.
Along the way, I stumbled across a couple bugs and fixed them.
Chapter list entry would get wedged under certain circumstances.
Pausing encoding didn't display pause message in status bar.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1662 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk/configure.ac')
-rw-r--r-- | gtk/configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/configure.ac b/gtk/configure.ac index baee4531d..40d5560b0 100644 --- a/gtk/configure.ac +++ b/gtk/configure.ac @@ -66,6 +66,10 @@ AM_PROG_LIBTOOL +PKG_CHECK_MODULES(GHBTOOLS, [glib-2.0 gobject-2.0]) +AC_SUBST(GHBTOOLS_CFLAGS) +AC_SUBST(GHBTOOLS_LIBS) + PKG_CHECK_MODULES(GHB, [gtk+-2.0 >= 2.8 gio-2.0 hal hal-storage]) AC_SUBST(GHB_CFLAGS) AC_SUBST(GHB_LIBS) |