diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1999-01-08 05:40:16 +0000 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1999-01-08 05:40:16 +0000 |
commit | f04f097e60a940f995212c0e09999eec06381b9d (patch) | |
tree | d9cd3d2bea57bd3fd6f4a11a50c09a1dbc68af8e | |
parent | ac67ccf1093757617b5befafa5c16e6f2ed6019c (diff) | |
download | shared-mime-info-f04f097e60a940f995212c0e09999eec06381b9d.tar.gz |
Couple of changes:
Couple of changes:
configure tests to make gnome-libs prepared for a potential
release of Imlib 1.9.
Mime-info fix for the tar-problem in gmc.
Miguel.
svn path=/trunk/; revision=569
-rw-r--r-- | macros/ChangeLog | 4 | ||||
-rw-r--r-- | support/gnomesupport.awk | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index d72e79dd..b791f0d2 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,3 +1,7 @@ +1999-01-05 Miguel de Icaza <miguel@nuclecu.unam.mx> + + * need-declaration.m4, gnome-support.m4: Fixed the scandir detection. + 1999-01-06 Nat Friedman <nat@nat.org> * Makefile.am (MACROS): Added gnome-print-check.m4 to MACROS diff --git a/support/gnomesupport.awk b/support/gnomesupport.awk index 69b94dfe..7e318b00 100644 --- a/support/gnomesupport.awk +++ b/support/gnomesupport.awk @@ -24,7 +24,7 @@ END { print "#include <stdarg.h>"; } - if (!def["HAVE_SCANDIR"]) { + if (!def["HAVE_SCANDIR"] || def["NEED_DECLARATION_SCANDIR"]) { print ""; print "#include <sys/types.h>"; |