Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
flags.m4
Package: vlc-1.0.5.zip [view]
Upload User: kjfoods
Upload Date: 2020-07-06
Package Size: 29949k
Code Size: 2k
Category:
midi program
Development Platform:
Unix_Linux
- # <rdenis (at) simphalempin (dot) com>.
- # This file (flags.m4) is free software; unlimited permission to
- # copy and/or distribute it , with or without modifications, as long
- # as this notice is preserved.
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- # PARTICULAR PURPOSE.
- AC_DEFUN([RDC_PROG_CC_FLAGS_IFELSE],
- [AC_LANG_ASSERT(C)
- CFLAGS_save="${CFLAGS}"
- as_ac_var=`echo "ac_cv_prog_cc_flags_$1" | $as_tr_sh`
- AC_CACHE_CHECK([if $CC accepts $1], [$as_ac_var], [
- CFLAGS="${CFLAGS} $1"
- AC_COMPILE_IFELSE([AC_LANG_PROGRAM()], [
- eval "$as_ac_var=yes"
- ],[
- eval "$as_ac_var=no"
- ])
- ])
- ac_res=`eval echo '${'$as_ac_var'}'`
- AS_IF([test "${ac_res}" != "no"], [
- CFLAGS="${CFLAGS_save} $1"
- $2
- ], [
- CFLAGS="${CFLAGS_save}"
- $3
- ])
- ])
- AC_DEFUN([RDC_PROG_CC_WFLAGS],
- [ for a in $1; do
- RDC_PROG_CC_FLAGS_IFELSE([-W$a])
- done
- ])
- AC_DEFUN([RDC_PROG_LINK_FLAGS_IFELSE],
- [AC_LANG_ASSERT(C)
- LDFLAGS_save="${LDFLAGS}"
- as_ac_var=`echo "ac_cv_prog_link_flags_$1" | $as_tr_sh`
- AC_CACHE_CHECK([if $LINK accepts $1], [$as_ac_var], [
- LDFLAGS="${LDFLAGS} $1"
- AC_LINK_IFELSE([AC_LANG_PROGRAM()], [
- eval "$as_ac_var=yes"
- ],[
- eval "$as_ac_var=no"
- ])
- ])
- ac_res=`eval echo '${'$as_ac_var'}'`
- AS_IF([test "${ac_res}" != "no"], [
- LDFLAGS="${LDFLAGS} $1"
- $2
- ], [
- LDFLAGS="${LDFLAGS_save}"
- $3
- ])
- ])