Fix the GIMP autoconf stuff for the non-COMPAT case.
Fix the GIMP autoconf stuff for the non-COMPAT case.
This commit is contained in:
parent
1e9f323717
commit
14e3790b95
2 changed files with 10 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
Thu Sep 21 17:41:26 CEST 2000 Daniel Egger <egger@suse.de>
|
||||
|
||||
* gimp.m4: Also try new API when trying to link the
|
||||
test program.
|
||||
|
||||
2000-09-21 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* libgimp/makefile.mingw.in
|
||||
|
|
|
|||
6
gimp.m4
6
gimp.m4
|
|
@ -144,7 +144,11 @@ int main ()
|
|||
#include <stdio.h>
|
||||
#include <libgimp/gimp.h>
|
||||
|
||||
GPlugInInfo PLUG_IN_INFO =
|
||||
#if GIMP_CHECK_VERSION(1,1,20)
|
||||
GimpPlugInInfo
|
||||
#else
|
||||
GPlugInInfo
|
||||
#endif
|
||||
{
|
||||
NULL, /* init_proc */
|
||||
NULL, /* quit_proc */
|
||||
|
|
|
|||
Loading…
Reference in a new issue