diff options
author | Kevin Walzer <kw@codebykevin.com> | 2020-09-23 17:39:38 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2020-09-23 17:39:38 (GMT) |
commit | 834616a1ffe88700086fc2afd0f7762b5aa08c5e (patch) | |
tree | 0c67661a4fc49a4c22455716a2e0fbf96481a8a6 /unix | |
parent | 3af7a9c448ffdd464948896e43d4c1c9504b5d4c (diff) | |
download | tk-834616a1ffe88700086fc2afd0f7762b5aa08c5e.zip tk-834616a1ffe88700086fc2afd0f7762b5aa08c5e.tar.gz tk-834616a1ffe88700086fc2afd0f7762b5aa08c5e.tar.bz2 |
Tweaks to configure
Diffstat (limited to 'unix')
-rwxr-xr-x | unix/configure | 12 | ||||
-rw-r--r-- | unix/configure.ac | 12 |
2 files changed, 16 insertions, 8 deletions
diff --git a/unix/configure b/unix/configure index 0cf779f..1475ee8 100755 --- a/unix/configure +++ b/unix/configure @@ -7850,10 +7850,14 @@ $as_echo "$enable_libnotify" >&6; } LIBNOTIFY_LIBS=`pkg-config --libs libnotify 2>/dev/null` || found_libnotify="no" if test "$found_libnotify" = "no" ; then found_libnotify=yes - LIBNOTIFY_CFLAGS=`pkg-config --cflags libnotify 2>/dev/null` || found_libnotify="no" - LIBNOTIFY_LIBS=`pkg-config --libs libnotify 2>/dev/null` || found_libnotify="no" - GLIB_CFLAGS=`pkg-config --cflags glib-2.0 2>/dev/null` || found_libnotify="no" - GLIB_LIBS=`pkg-config --libs glib-2.0 2>/dev/null` || found_libnotify="no" + # LIBNOTIFY_CFLAGS=`pkg-config --cflags libnotify 2>/dev/null` || found_libnotify="no" + # LIBNOTIFY_LIBS=`pkg-config --libs libnotify 2>/dev/null` || found_libnotify="no" + # GLIB_CFLAGS=`pkg-config --cflags glib-2.0 2>/dev/null` || found_libnotify="no" + # GLIB_LIBS=`pkg-config --libs glib-2.0 2>/dev/null` || found_libnotify="no" + LIBNOTIFY_CFLAGS=`pkg-config --cflags libnotify` || found_libnotify="no" + LIBNOTIFY_LIBS=`pkg-config --libs libnotify` || found_libnotify="no" + GLIB_CFLAGS=`pkg-config --cflags glib-2.0` || found_libnotify="no" + GLIB_LIBS=`pkg-config --libs glib-2.0` || found_libnotify="no" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $found_libnotify" >&5 $as_echo "$found_libnotify" >&6; } diff --git a/unix/configure.ac b/unix/configure.ac index 85d52a0..b9dc8ab 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -542,10 +542,14 @@ if test $tk_aqua = no; then LIBNOTIFY_LIBS=`pkg-config --libs libnotify 2>/dev/null` || found_libnotify="no" if test "$found_libnotify" = "no" ; then found_libnotify=yes - LIBNOTIFY_CFLAGS=`pkg-config --cflags libnotify 2>/dev/null` || found_libnotify="no" - LIBNOTIFY_LIBS=`pkg-config --libs libnotify 2>/dev/null` || found_libnotify="no" - GLIB_CFLAGS=`pkg-config --cflags glib-2.0 2>/dev/null` || found_libnotify="no" - GLIB_LIBS=`pkg-config --libs glib-2.0 2>/dev/null` || found_libnotify="no" + # LIBNOTIFY_CFLAGS=`pkg-config --cflags libnotify 2>/dev/null` || found_libnotify="no" + # LIBNOTIFY_LIBS=`pkg-config --libs libnotify 2>/dev/null` || found_libnotify="no" + # GLIB_CFLAGS=`pkg-config --cflags glib-2.0 2>/dev/null` || found_libnotify="no" + # GLIB_LIBS=`pkg-config --libs glib-2.0 2>/dev/null` || found_libnotify="no" + LIBNOTIFY_CFLAGS=`pkg-config --cflags libnotify` || found_libnotify="no" + LIBNOTIFY_LIBS=`pkg-config --libs libnotify` || found_libnotify="no" + GLIB_CFLAGS=`pkg-config --cflags glib-2.0` || found_libnotify="no" + GLIB_LIBS=`pkg-config --libs glib-2.0` || found_libnotify="no" fi AC_MSG_RESULT([$found_libnotify]) fi |