diff options
author | hasufell <julian.ospald@googlemail.com> | 2013-05-09 01:48:10 +0200 |
---|---|---|
committer | hasufell <julian.ospald@googlemail.com> | 2013-05-09 01:48:10 +0200 |
commit | 607e5a567cc0f126c48832fd452664b293cdda99 (patch) | |
tree | 44d9c7da67cf7be844ffd60d5dda3c9c2370e40f | |
parent | df31e239a90e210af087a44db3a4abd401622008 (diff) |
CONFIGURE: fix undefined reference to `g_type_init'
These two assignments have no place here and will overwrite the previous COMMON_LIBS="$COMMON_LIBS -lgmodule-2.0 -lgobject-2.0". This can lead to build failure during linking stage depending on the chosen configure options.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 98cea144..bee4ff41 100644 --- a/configure.ac +++ b/configure.ac @@ -211,8 +211,6 @@ fi if test "$gtkfe" != yes; then gnome=no - COMMON_LIBS="$GLIB_LIBS" - COMMON_CFLAGS="$GLIB_CFLAGS" fi dnl ********************************************************************* |