My build of dwm
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

34 satır
1.2 KiB

  1. Description: Fix FTBFS on mipsel* due to custom library search paths.
  2. This patch removes library search -L/usr/lib and include paths
  3. defined by upstream. Since all the libraries and headers needed are
  4. available in default path these flags are redundant also since
  5. /usr/lib may have different purpose on various architecture like
  6. mips* it causes FTBFS. Thanks to YunQiang Su for bringing this up.
  7. Author: Vasudev Kamath <kamathvasudev@gmail.com>
  8. Last-Updated: 2016-03-26
  9. Bug-Debian: https://bugs.debian.org/722765
  10. --- a/config.mk 2016-03-26 23:36:45.914814792 +0100
  11. +++ b/config.mk 2016-03-26 23:37:20.275092945 +0100
  12. @@ -7,9 +7,6 @@
  13. PREFIX = /usr/local
  14. MANPREFIX = ${PREFIX}/share/man
  15. -X11INC = /usr/X11R6/include
  16. -X11LIB = /usr/X11R6/lib
  17. -
  18. # Xinerama, comment if you don't want it
  19. XINERAMALIBS = -lXinerama
  20. XINERAMAFLAGS = -DXINERAMA
  21. @@ -21,8 +18,8 @@
  22. #FREETYPEINC = ${X11INC}/freetype2
  23. # includes and libs
  24. -INCS = -I${X11INC} -I${FREETYPEINC}
  25. -LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
  26. +INCS = -I${FREETYPEINC}
  27. +LIBS = -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
  28. # flags
  29. CPPFLAGS += -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}