Advertisement
Guest User

GopherVR Cygwin diff

a guest
Mar 10th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.33 KB | None | 0 0
  1. diff -rupN gophervr_orig/gopher/object/Regex.h gophervr_cyg/gopher/object/Regex.h
  2. --- gophervr_orig/gopher/object/Regex.h 2009-12-20 23:23:58.000000000 -0200
  3. +++ gophervr_cyg/gopher/object/Regex.h  2013-03-10 12:35:22.392693100 -0300
  4. @@ -156,9 +156,11 @@
  5.  /* Try including files until we get REG_EXTENDED. */
  6.  
  7.  /* damn you Mac OS X ... Cameron Kaiser */
  8. +/* Cygwin is also case insensitive. RichardG867 */
  9.  #ifndef REG_EXTENDED
  10. -#ifdef __APPLE__
  11. -/* this has to be explicit because HFS+ is case-insensitive by default */
  12. +#if defined(__APPLE__) || defined(__CYGWIN__)
  13. +/* this has to be explicit because HFS+ is case-insensitive by default, so
  14. +is FAT/NTFS */
  15.  #include "/usr/include/regex.h"
  16.  #endif
  17.  #endif
  18. diff -rupN gophervr_orig/gophervr/Makefile gophervr_cyg/gophervr/Makefile
  19. --- gophervr_orig/gophervr/Makefile 2010-09-10 10:33:30.000000000 -0300
  20. +++ gophervr_cyg/gophervr/Makefile  2013-03-10 12:31:07.012086200 -0300
  21. @@ -1,7 +1,7 @@
  22.  # start of Imakefile
  23.  
  24.  CC     = gcc
  25. -CFLAGS     =  -g -O3 -I../gopher -I../gopher/object -I../libvogl/src -I/usr/OpenMotif/include -force_cpusubtype_ALL -mmacosx-version-min=10.4 -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.4u.sdk
  26. +CFLAGS     =  -g -O3 -I../gopher -I../gopher/object -I../libvogl/src
  27.  LDOPTIONS  =
  28.  LDLIBS     = -L/usr/OpenMotif/lib -L/usr/X11R6/lib
  29.  EXTRA_LOAD_FLAGS=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement