mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 14:05:59 +00:00
948ecfe7e3
* put two TODO in comments git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13679 a592a061-630c-0410-9148-cb99ea01b6c8
15 lines
394 B
Bash
15 lines
394 B
Bash
# Macro added for some Cygwin-specific support -*- sh -*-
|
|
# @author@: Kayvan Sylvan
|
|
|
|
AC_DEFUN([CHECK_WITH_CYGWIN],
|
|
[
|
|
case $host_os in
|
|
cygwin* | mingw* | pw32* )
|
|
# TODO 1: pass -DQ_CYGWIN_WIN" *when* the option
|
|
# --without-x is passed to configure *and* platform is cygwin
|
|
# TODO 2: see how to pass -mno-cygwin when building native
|
|
# mingw within cygwin
|
|
;;
|
|
esac
|
|
])
|