27 C Dev-cpp Makefile.win Missing Separator Stop

  1. 27 C Dev-cpp Makefile.win Missing Separator Stop Working
  2. 27 C Dev-cpp Makefile.win Missing Separator Stopping
Makefile27 c dev-cpp makefile.win missing separator stopping

. missing separator (did you mean TAB instead of 8 spaces?). Means that the makefile contains spaces instead of Tab's. The make utility is notoriously picky about the use of Space instead of Tab. So it's likely that the makefile contains Space at the beginning of rule stanzas within the file. Let's say I have the following 3.c. Jan 12, 2018  There must be a space between ifneq and (. The TAB prefix means that it is a shell command, so be sure that the shell commands (make and rm) begin with TAB, and all other lines such as ifneq do not begin with TAB.

27 C Dev-cpp Makefile.win Missing Separator Stop Working

27 C Dev-cpp Makefile.win Missing Separator Stop

27 C Dev-cpp Makefile.win Missing Separator Stopping

hi .. i want to install mysql50-server and when i write make install clean
I receive this error
Makefile:34: *** missing separator. Stop.
Here is the code :
# New ports collection makefile for: MySQL-server
# Date created: Fri Apr 11 10:06:26 CET 2003
# Whom: Alex Dupre <sysadmin@alexdupre.com>
#
# $FreeBSD: ports/databases/mysql50-server/Makefile,v 1.251 2010/02/16 11:03:02 ale Exp $
#
PORTNAME?= mysql
PORTVERSION= 5.0.90
PORTREVISION?= 0
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_MYSQL}
MASTER_SITE_SUBDIR= MySQL-5.0
PKGNAMESUFFIX?= -server
MAINTAINER= ale@FreeBSD.org
COMMENT?= Multithreaded SQL database (server)
SLAVEDIRS= databases/mysql50-client databases/mysql50-scripts
GNU_CONFIGURE= yes
MAKE_JOBS_SAFE= yes
CONFIGURE_ARGS= --localstatedir=/var/db/mysql
--without-debug
--without-readline
--without-libedit
--without-bench
--without-extra-tools
--with-libwrap
--with-low-memory
--with-comment='FreeBSD port: ${PKGNAME}'
--enable-thread-safe-client
.ifdef USE_MYSQL
.error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again.
.endif
.if defined(WITH_CHARSET) && ${WITH_CHARSET} != '
CONFIGURE_ARGS+=--with-charset=${WITH_CHARSET}
.endif
.if defined(WITH_XCHARSET) && ${WITH_XCHARSET} != '
CONFIGURE_ARGS+=--with-extra-charsets=${WITH_XCHARSET}
.endif
.if defined(WITH_OPENSSL)
USE_OPENSSL= yes
CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE}
.endif
.if defined(BUILD_STATIC)
CONFIGURE_ARGS+=--with-mysqld-ldflags=-all-static
.endif
.if defined(WITHOUT_INNODB)
CONFIGURE_ARGS+=--without-innodb
.endif
.if defined(WITH_ARCHIVE)
CONFIGURE_ARGS+=--with-archive-storage-engine
.endif
.if defined(WITH_CSV)
CONFIGURE_ARGS+=--with-csv-storage-engine
.endif
.if defined(WITH_FEDERATED)
CONFIGURE_ARGS+=--with-federated-storage-engine
.endif
.if defined(WITH_NDB)
CONFIGURE_ARGS+=--with-ndbcluster
.endif
.if defined(WITH_COLLATION) && ${WITH_COLLATION} != '
CONFIGURE_ARGS+=--with-collation=${WITH_COLLATION}
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} 'i386'
CONFIGURE_ARGS+=--enable-assembler --with-berkeley-db
.endif
.if defined(WITH_LINUXTHREADS)
CONFIGURE_ARGS+=--with-named-thread-libs='-DHAVE_GLIBC2_STYLE_GETHOSTBYNAME_R
CONFIGURE_ARGS+=-D_THREAD_SAFE -I${LOCALBASE}/include/pthread/linuxthreads
CFLAGS+= -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE
CFLAGS+= -I${LOCALBASE}/include/pthread/linuxthreads
LIB_DEPENDS+= lthread:${PORTSDIR}/devel/linuxthreads
CONFIGURE_ARGS+=-L${LOCALBASE}/lib -llthread -llgcc_r -llstdc++ -llsupc++'
.else
CONFIGURE_ARGS+=--with-named-thread-libs=${PTHREAD_LIBS}
CFLAGS+= ${PTHREAD_CFLAGS}
.endif
.if defined(BUILD_OPTIMIZED)
CFLAGS+= -O3 -fno-omit-frame-pointer
CFLAGS+= -fno-gcse
.endif
.if defined(WITHOUT_THR_ALARM)
CFLAGS+= -DDONT_USE_THR_ALARM
.endif
CXXFLAGS+= ${CFLAGS} -felide-constructors -fno-rtti
CXXFLAGS+= -fno-exceptions
# MySQL-Server part
.if !defined(CLIENT_ONLY) && !defined(SCRIPTS_ONLY)
USE_MYSQL= yes
WANT_MYSQL_VER= 50
LATEST_LINK= mysql50-server
CONFLICTS= mysql-server-[34].* mysql-server-5.[1-9].*
USE_RC_SUBR= mysql-server.sh
.if !defined(WITHOUT_INNODB)
PLIST_SUB+= INNODB='
.else
PLIST_SUB+= INNODB='@comment '
.endif
.if defined(WITH_NDB)
PLIST_SUB+= NDB='
.else
PLIST_SUB+= NDB='@comment '
.endif
MAN1= innochecksum.1 myisamchk.1 myisamlog.1 myisampack.1
my_print_defaults.1 myisam_ftdump.1 mysql_client_test_embedded.1
mysql_install_db.1 mysql_tzinfo_to_sql.1
mysql_waitpid.1 mysqld_safe.1 mysqltest_embedded.1 mysql.server.1
perror.1 replace.1 resolve_stack_dump.1 resolveip.1
.if defined(WITH_NDB)
MAN1+= ndb_config.1 ndb_delete_all.1 ndb_desc.1 ndb_drop_index.1
ndb_drop_table.1 ndb_error_reporter.1 ndb_mgm.1
ndb_print_backup_file.1 ndb_print_schema_file.1
ndb_print_sys_file.1 ndb_restore.1 ndb_select_all.1
ndb_select_count.1 ndb_show_tables.1 ndb_size.pl.1 ndb_waiter.1
.endif
INFO= mysql
CONFIGURE_ARGS+=--with-embedded-server
CFLAGS+= -fPIC
pre-fetch:
@${ECHO} '
@${ECHO} 'You may use the following build options:'
@${ECHO} '
@${ECHO} ' WITH_CHARSET=charset Define the primary built-in charset (latin1).'
@${ECHO} ' WITH_XCHARSET=list Define other built-in charsets (may be 'all').'
@${ECHO} ' WITH_COLLATION=collate Define default collation (latin1_swedish_ci).'
@${ECHO} ' WITH_OPENSSL=yes Enable secure connections.'
@${ECHO} ' WITH_LINUXTHREADS=yes Use the linuxthreads pthread library.'
@${ECHO} ' WITH_PROC_SCOPE_PTH=yes Use process scope threads'
@${ECHO} ' (try it if you use libpthread).'
@${ECHO} ' BUILD_OPTIMIZED=yes Enable compiler optimizations'
@${ECHO} ' (use it if you need speed).'
@${ECHO} ' BUILD_STATIC=yes Build a static version of mysqld.'
@${ECHO} ' (use it if you need even more speed).'
@${ECHO} ' WITHOUT_THR_ALARM=yes Disable signals (this reduces kernel lock'
@${ECHO} ' contention on SMP, but has the side effect
@${ECHO} ' that you can't kill clients that are sleeping).'
@${ECHO} ' WITHOUT_INNODB=yes Disable support for InnoDB table handler.'
@${ECHO} ' WITH_ARCHIVE=yes Enable support for Archive Storage Engine.'
@${ECHO} ' WITH_CSV=yes Enable support for CSV Storage Engine.'
@${ECHO} ' WITH_FEDERATED=yes Enable support for Federated Storage Engine.'
@${ECHO} ' WITH_NDB=yes Enable support for NDB Cluster.'
@${ECHO} '
post-patch:
@${REINPLACE_CMD} -e 's|SUBDIRS =|SUBDIRS = include @docs_dirs@ scripts @sql_server_dirs@ libmysql @man_dirs@ @libmysqld_dirs@ support-files|g' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's|all: config.h|all: config.h all-local|g' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's|bin_SCRIPTS =|bin_SCRIPTS = @server_scripts@ mysql_upgrade_shell|g' ${WRKSRC}/scripts/Makefile.in
@${REINPLACE_CMD} -e 's|dist_pkgdata_DATA =|dist_pkgdata_DATA = fill_help_tables.sql mysql_system_tables.sql mysql_system_tables_data.sql|g' ${WRKSRC}/scripts/Makefile.in
@${REINPLACE_CMD} -e 's|man1_MANS =|man1_MANS = ${MAN1}|g' ${WRKSRC}/man/Makefile.in
@${REINPLACE_CMD} -e 's|install-data-am: install-pkgincludeHEADERS|install-data-am:|g' ${WRKSRC}/extra/Makefile.in
@${REINPLACE_CMD} -e 's|install-data-am: install-pkgincludeHEADERS|install-data-am:|g' ${WRKSRC}/include/Makefile.in
@${REINPLACE_CMD} -e 's|install-exec-am: install-pkglibLTLIBRARIES|install-exec-am:|g' ${WRKSRC}/libmysql/Makefile.in
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/mysys/default.c
.if defined(WITH_PROC_SCOPE_PTH)
@${REINPLACE_CMD} -e 's|PTHREAD_SCOPE_SYSTEM|PTHREAD_SCOPE_PROCESS|g' ${WRKSRC}/sql/mysqld.cc
.endif
post-install:
.if !defined(PACKAGE_BUILDING)
@${SETENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
@${CAT} ${PKGMESSAGE}
.endif
.else
# MySQL-Client part
.if defined(CLIENT_ONLY)
LATEST_LINK= mysql50-client
CONFLICTS= mysql-client-[34].* mysql-client-5.[1-9].*
MAN1= mysql_config.1 mysql_upgrade.1 mysql.1 mysqladmin.1
mysqlbinlog.1 mysqlbug.1 mysqlcheck.1
mysqldump.1 mysqlimport.1 mysqlshow.1 mysqltest.1
USE_LDCONFIG= ${PREFIX}/lib/mysql
CONFIGURE_ARGS+=--without-server
post-patch:
@${REINPLACE_CMD} -e 's|SUBDIRS =|SUBDIRS = include scripts strings mysys dbug extra regex libmysql_r libmysql client @man_dirs@|g' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's|install-exec-am: install-pkglibLIBRARIES|install-exec-am:|g' ${WRKSRC}/strings/Makefile.in ${WRKSRC}/mysys/Makefile.in ${WRKSRC}/dbug/Makefile.in
@${REINPLACE_CMD} -e 's|all: config.h|all: config.h all-local|g' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's|bin_SCRIPTS =|bin_SCRIPTS = mysql_config mysql_fix_privilege_tables mysqlbug|g' ${WRKSRC}/scripts/Makefile.in
@${REINPLACE_CMD} -e 's|dist_pkgdata_DATA =|dist_pkgdata_DATA = mysql_fix_privilege_tables.sql|g' ${WRKSRC}/scripts/Makefile.in
@${REINPLACE_CMD} -e 's|man1_MANS =|man1_MANS = ${MAN1}|g' ${WRKSRC}/man/Makefile.in
@${REINPLACE_CMD} -e 's|install-exec-am: install-binPROGRAMS|install-exec-am:|g' ${WRKSRC}/extra/Makefile.in
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/mysys/default.c
.else
# MySQL-Scripts part
USE_MYSQL= yes
WANT_MYSQL_VER= 50
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql50
.if ${PERL_LEVEL} <= 500800
RUN_DEPENDS+= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp
.endif
LATEST_LINK= mysql50-scripts
CONFLICTS= mysql-scripts-[34].* mysql-scripts-5.[1-9].*
MAN1= msql2mysql.1 mysql_convert_table_format.1 mysql_explain_log.1 mysql_find_rows.1
mysql_fix_extensions.1 mysql_secure_installation.1
mysql_setpermission.1 mysql_tableinfo.1 mysql_zap.1 mysqlaccess.1
mysqldumpslow.1 mysqlhotcopy.1 mysqld_multi.1
SCRIPTS= msql2mysql mysql_fix_extensions mysql_setpermission
mysql_secure_installation mysql_zap mysqlaccess
mysql_convert_table_format mysql_find_rows mysqlhotcopy
mysqldumpslow mysql_explain_log mysql_tableinfo mysqld_multi
post-patch:
@${REINPLACE_CMD} -e 's|SUBDIRS =|SUBDIRS = scripts @man_dirs@|g' ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e 's|bin_SCRIPTS =|bin_SCRIPTS = ${SCRIPTS}|g' ${WRKSRC}/scripts/Makefile.in
@${REINPLACE_CMD} -e 's|install-exec-am install-data-am|install-exec-am|g' ${WRKSRC}/scripts/Makefile.in
@${REINPLACE_CMD} -e 's|man1_MANS =|man1_MANS = ${MAN1}|g' ${WRKSRC}/man/Makefile.in
.endif
.endif
# Common part
post-extract:
@${CP} /usr/include/tcpd.h ${WRKSRC}/sql/mytcpd.h
.if defined(WITH_OPENSSL) && defined(BUILD_STATIC)
pre-configure:
@${ECHO} 'You can't use the BUILD_STATIC option when using OpenSSL.'
@${FALSE}
.endif
.include <bsd.port.post.mk>
the error is somewhere here ...
'.ifdef USE_MYSQL
.error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again.
.endif'