Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / x11 / xforms / patches / patch-aa
blob7100efe2a0a898695c93f946713715c71c30632c
1 $NetBSD: patch-aa,v 1.9 2011/09/08 00:24:43 joerg Exp $
3 - Use optimization level that actually exists (gcc) or works (clang).
4 - Don't use opengl. (is this still correct?)
5 - Configure paths for pkgsrc.
7 --- Imakefile.orig      2002-12-03 17:25:43.000000000 +0000
8 +++ Imakefile
9 @@ -2,13 +2,13 @@
11  /* Fairly important stuff */
13 -#define OptimizationLevel -O4
14 +#define OptimizationLevel -O2
15  #define DoWall NO
17  #define BuildShared YES
18 -#define StaticLink YES
19 +#define StaticLink NO
21 -#define BuildGL YES
22 +#define BuildGL NO
25  /* Less Important or System Specific */
26 @@ -33,22 +33,22 @@
27  /* Out in the Tall Weeds */
29  #define InstallNonstandard NO
30 -#define XFormsNonstandardInstallDir /usr/local
31 +#define XFormsNonstandardInstallDir $(PREFIX)
33  #define NonstandardXpm NO
35 -#define XpmIncLoc /usr/local/include
36 -#define XpmLibLoc /usr/local/lib
37 +#define XpmIncLoc ${LOCALBASE}/include
38 +#define XpmLibLoc ${LOCALBASE}/lib
40  #define NonstandardTiff NO
42 -#define TiffIncLoc /usr/local/include
43 -#define TiffLibLoc /usr/local/lib
44 +#define TiffIncLoc ${LOCALBASE}/include
45 +#define TiffLibLoc ${LOCALBASE}/lib
47  #define NonstandardJpeg NO
49 -#define JpegIncLoc /usr/local/include
50 -#define JpegLibLoc /usr/local/lib
51 +#define JpegIncLoc ${LOCALBASE}/include
52 +#define JpegLibLoc ${LOCALBASE}/lib
54  ######################################################################
55  #                                                                    #